Array Get
Node Data | |
|---|---|
Display name | |
Array Get | |
Internal name | |
Node_PCX_Array_Get | |
Inheritances | |
| Node_PCX | |
| Node_PCX_Array_Get | |
Inputs | |
Node_PCX_Array_Get | |
Array |
|
Index |
|
Outputs | |
Node_PCX_Array_Get | |
pcxnode |
Pcx |
Get the value of an array at a specific index.
Properties
Array
The array to get the value from.
Index
The index of the value to get. - If the index is negative, it will count from the end of the array. - In the is an array, the output will be an array with the values at the specified indexes.
Overflow
What to do if the index is out of bounds.
- Clamp: Clamp the index to the bounds of the array (or inverted bound for negative index).
- Loop: Wrap the index around the bounds of the array.
- Ping Pong: Reflect the index at the bounds of the array.